home *** CD-ROM | disk | FTP | other *** search
/ Software USA 4 #10 / Software USA Volume 4.10.iso / mac / Educational / HTML Vocabulary / HTML Vocabulary 2.0 / HTML Vocabulary 2.0.rsrc / TEXT_2000_Text Structure.txt < prev    next >
Text File  |  1996-09-28  |  3KB  |  46 lines

  1.  
  2. Paragraphs    
  3. <BR [CLEAR="all|left|right"]>
  4. Inserts a simple linebreak. CLEAR is used to move the following text down past aligned images or other objects, on either one or both sides of the window. Use CLEAR="all" if you have pictures or other floating objects on both side of the text.
  5.  
  6. <NOBR>...</NOBR>
  7. Stands for 'No BReak'. Use it if you want the text inside the tag , for example a telephone number, to appears on the same line and not be wrapped. Don't forget to end with </NOBR>.
  8.  
  9. <WBR>
  10. Stands for 'word break'. Starts a new line if the browser need to. Use it, for example, inside a long word.
  11.  
  12. <P [ALIGN="left|right|center|justify"]>...[</P>]
  13. Stands for 'paragraph'. Use it to start a new paragraph. Use ALIGN to align the following text. Justify makes straight margins, but is only supported in Internet Explorer and later versions of Netscape Navigator. More than one P-tag without any other text or tag is useless. To insert more space, use many BR-tags, a transparent picture, a TABLE, use the SPACER-tag, etc. <P> can aptionally end with </P>.  (IE NS4)
  14.  
  15. <CENTER>...</CENTER>
  16. Use it to center text and pictures between the tags. Differently from the P-tag, this will also center tables in all browsers.
  17.  
  18. <DIV ALIGN="left|center|right|justify">...</DIV>
  19. Aligns text, pictures and other contents together. As with paragraphs, justified margins does not work in Netscape Navigator prior to version 4.0. (IE NS4)
  20.  
  21. Rulers    
  22. <HR [...]>
  23. Stands for 'horizontal rule'. Inserts a thin line. The following tags can be used:
  24.  
  25. [SIZE="n "]
  26. Sets the height of the line in pixels. Default is 2.
  27.  
  28. [WIDTH="n |n %"]
  29. Sets the width of the line, either in pixels or in percent. Default is 100%.
  30.  
  31. [ALIGN="left|right|center"]
  32. Sets the align of the line, default is center. Only useful if the WIDTH-property is used.
  33.  
  34. [NOSHADE]
  35. Removes the 3D-look from the line.
  36.  
  37. [COLOR="color "]
  38. Defines the color of the line. IE
  39.  
  40. Columns    
  41. <MULTICOL COLS="n¬†" [GUTTER="n¬†"] [WIDTH="n¬†"]>...</MULTICOL>
  42. This is a Netscape extension, added in Netscape 3.0. The text within this tag will show up in columns. COLS is the number of columns, GUTTER the space between the columns in pixels, usually 10, and WIDTH the width of the columns in pixels. All columns have the same width. NS3
  43.  
  44. Spacer    
  45. <SPACER TYPE="horizontal|vertical|block" [SIZE="n¬†"] [HEIGHT="n¬†|n¬†%" WIDTH="n¬†|n¬†%" [ALIGN="left|right"]]>
  46. Inserts an empty space. TYPE is the type of space and SIZE is the height or width, not used with blocks. When using blocks, the HEIGHT, WIDTH and ALIGN properties can be used, in the same way as in the IMG-tag. NS3